var runtime.fwdSig

12 uses

	runtime (current package)
		signal_unix.go#L82: var fwdSig [_NSIG]uintptr
		signal_unix.go#L134: 		fwdSig[i] = getsig(i)
		signal_unix.go#L139: 			if fwdSig[i] != _SIG_DFL && fwdSig[i] != _SIG_IGN {
		signal_unix.go#L141: 			} else if fwdSig[i] == _SIG_IGN {
		signal_unix.go#L160: 		if atomic.Loaduintptr(&fwdSig[sig]) == _SIG_IGN {
		signal_unix.go#L205: 			atomic.Storeuintptr(&fwdSig[sig], getsig(sig))
		signal_unix.go#L235: 			setsig(sig, atomic.Loaduintptr(&fwdSig[sig]))
		signal_unix.go#L300: 			atomic.Storeuintptr(&fwdSig[_SIGPROF], h)
		signal_unix.go#L319: 				h := atomic.Loaduintptr(&fwdSig[_SIGPROF])
		signal_unix.go#L939: 		handler = atomic.Loaduintptr(&fwdSig[sig])
		signal_unix.go#L1095: 	fwdFn := atomic.Loaduintptr(&fwdSig[sig])